  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .cenario {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, #1a1a2e 0, #1a1a2e 50px, #0f3460 50px, #0f3460 100px);
    clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
    bottom: 0;
  }

  .holograma {
    position: absolute;
    width: 10vw;
    height: 10vw;
    max-width: 100px;
    max-height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    border-radius: 50%;
    animation: brilhar 2s infinite;
  }

  .tela {
    position: absolute;
    width: 12vw;
    height: 8vw;
    max-width: 120px;
    max-height: 80px;
    background: linear-gradient(to right, #00c9ff, #92fe9d);
    top: 30%;
    right: 15%;
    border-radius: 10px;
    box-shadow: 0 0 15px #00c9ff;
  }

  .predios {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    z-index: 0;
  }

  .predio {
    width: 4vw;
    max-width: 40px;
    height: 100%;
    background: linear-gradient(to top, #2c3e50, #4ca1af);
    box-shadow: 0 0 10px #4ca1af;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  }

  .drones {
    position: absolute;
    top: 10%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    z-index: 2;
  }

  .drone {
    width: 4vw;
    height: 2vw;
    max-width: 40px;
    max-height: 20px;
    background: radial-gradient(circle, #00ffea, #0044ff);
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffea;
    animation: flutuar 3s ease-in-out infinite;
  }

  @keyframes flutuar {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(10px);
    }
  }

  @keyframes brilhar {

    0%,
    100% {
      opacity: 0.6;
      transform: scale(1);
    }

    50% {
      opacity: 1;
      transform: scale(1.2);
    }
  }

  .robo {
    position: relative;
    width: 20vw;
    height: 40vw;
    max-width: 200px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, #00f2fe, #4facfe);
    clip-path: polygon(30% 0%, 70% 0%, 100% 20%, 100% 80%, 70% 100%, 30% 100%, 0% 80%, 0% 20%);
    box-shadow: 0 0 30px #4facfe;
    z-index: 1;
  }

  .cabeca {
    width: 12vw;
    height: 12vw;
    max-width: 120px;
    max-height: 120px;
    margin-top: 2vw;
    background: radial-gradient(circle, #ff416c, #ff4b2b);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px #ff4b2b;
    animation: pulsar 2s infinite;
  }

  .olhos {
    display: flex;
    gap: 1vw;
  }

  .olho {
    width: 2vw;
    height: 2vw;
    max-width: 20px;
    max-height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
  }

  .tronco {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: repeating-linear-gradient(45deg, #43e97b, #38f9d7 10px, #43e97b 20px);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  }

  .pernas {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 1vw;
  }

  .perna {
    width: 3vw;
    height: 8vw;
    max-width: 30px;
    max-height: 80px;
    background: linear-gradient(to top, #fc00ff, #00dbde);
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 0 10px #00dbde;
  }

  .bracos {
    position: absolute;
    top: 14vw;
    width: 30vw;
    max-width: 300px;
    display: flex;
    justify-content: space-between;
  }

  .braco {
    width: 4vw;
    height: 15vw;
    max-width: 40px;
    max-height: 150px;
    background: linear-gradient(to bottom, #f7971e, #ffd200);
    clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 0 10px #ffd200;
    animation: moverBraco 2s infinite ease-in-out;
  }

  .luz-central {
    position: absolute;
    top: 20vw;
    width: 3vw;
    height: 3vw;
    max-width: 30px;
    max-height: 30px;
    background: radial-gradient(circle, #fff200, #ff0080);
    border-radius: 50%;
    box-shadow: 0 0 20px #ff0080;
    animation: pulsar 1.5s infinite;
  }

  @keyframes moverBraco {

    0%,
    100% {
      transform: rotate(0deg);
    }

    50% {
      transform: rotate(10deg);
    }
  }

  @keyframes pulsar {

    0%,
    100% {
      transform: scale(1);
      opacity: 0.8;
    }

    50% {
      transform: scale(1.1);
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .robo {
      width: 25vw;
      height: 50vw;
    }

    .bracos {
      width: 35vw;
      top: 17vw;
    }

    .luz-central {
      top: 25vw;
    }
  }

  @media (max-width: 480px) {
    .robo {
      width: 35vw;
      height: 70vw;
    }

    .bracos {
      width: 45vw;
      top: 24vw;
    }

    .luz-central {
      top: 35vw;
    }

    .holograma {
      top: 15%;
      left: 5%;
    }

    .tela {
      top: 25%;
      right: 10%;
    }
  }

  @media (max-width: 360px) {
    .robo {
      width: 45vw;
      height: 90vw;
    }

    .bracos {
      width: 55vw;
      top: 31vw;
    }

    .luz-central {
      top: 45vw;
    }
  }